home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2.sit / Raven 1.2 / Documents / Architecture next >
Text File  |  1997-02-06  |  1KB  |  30 lines

  1. Raven is divided into four layers:
  2.  
  3. Application is a framework for applications. It includes application,
  4. document, and window classes.
  5.  
  6. Core is the middle layer. It includes a large number of generally useful
  7. classes for things like graphics, sound, files, menus, commands, drag and
  8. drop, preferences, etc.
  9.  
  10. Foundation contains low level classes for things like memory management,
  11. debugging, broadcast/listener, exceptions, string utilities, geometry
  12. classes, and so on.
  13.  
  14. Esoteria contains more exotic classes that most applications won't need.
  15. It includes classes for compression, parsing, graphing, and mathematics.
  16.  
  17. Each layer is composed of a number of packages. These packages contain
  18. a set of classes that work together to address some aspect of programming.
  19. For example, the Files package contains wrappers for the FSSpec struct,
  20. a file class, classes allowing you to iterate over the files in a folder,
  21. a volume iterator, and object oriented interfaces to CustomGetFile and
  22. CustomPutFile.
  23.  
  24. The code has been structured so that the lower levels know nothing about
  25. the higher layers and the dependancies between packages have been minimized.
  26. This makes Raven applications lighter weight and makes it relatively easy
  27. to use the bottom two layers of Raven in other frameworks (eg see the
  28. "Mixing Raven and PowerPlant" document).
  29.  
  30.